home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SPX30.ZIP / SPX_INT.ZIP / SPX_JOY.INT < prev    next >
Encoding:
Text File  |  1994-06-10  |  412 b   |  25 lines

  1. Unit spx_joy;
  2.  
  3. {$X+,O+ }
  4. { SPX Library Version 3.0  Copyright 1994 Scott D. Ramsay }
  5.  
  6. interface
  7.  
  8. Uses dos;
  9.  
  10. const
  11.   gravis : boolean = false;
  12.  
  13. var
  14.    JoyMaxCt : word;
  15.    stickx,
  16.    sticky   : array[1..2] of integer;
  17.    button1,
  18.    button2  : array[1..2] of boolean;
  19.  
  20. function joythere : boolean;
  21. function joy1there : boolean;
  22. function joy2there : boolean;
  23. procedure setstick(h:integer);
  24.  
  25.